home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / resolv / res_mkquery.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-28  |  7.3 KB  |  242 lines

  1. /*
  2.  * ++Copyright++ 1985, 1993
  3.  * -
  4.  * Copyright (c) 1985, 1993
  5.  *    The Regents of the University of California.  All rights reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  *    notice, this list of conditions and the following disclaimer in the
  14.  *    documentation and/or other materials provided with the distribution.
  15.  * 3. All advertising materials mentioning features or use of this software
  16.  *    must display the following acknowledgement:
  17.  *     This product includes software developed by the University of
  18.  *     California, Berkeley and its contributors.
  19.  * 4. Neither the name of the University nor the names of its contributors
  20.  *    may be used to endorse or promote products derived from this software
  21.  *    without specific prior written permission.
  22.  * 
  23.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  * -
  35.  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
  36.  * 
  37.  * Permission to use, copy, modify, and distribute this software for any
  38.  * purpose with or without fee is hereby granted, provided that the above
  39.  * copyright notice and this permission notice appear in all copies, and that
  40.  * the name of Digital Equipment Corporation not be used in advertising or
  41.  * publicity pertaining to distribution of the document or software without
  42.  * specific, written prior permission.
  43.  * 
  44.  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  45.  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  46.  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
  47.  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  48.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  49.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  50.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  51.  * SOFTWARE.
  52.  * -
  53.  * --Copyright--
  54.  */
  55.  
  56. #if defined(LIBC_SCCS) && !defined(lint)
  57. static char sccsid[] = "@(#)res_mkquery.c    8.1 (Berkeley) 6/4/93";
  58. static char rcsid[] = "$Id: res_mkquery.c,v 1.2 1994/07/28 21:56:26 roland Exp $";
  59. #endif /* LIBC_SCCS and not lint */
  60.  
  61. #include <sys/param.h>
  62. #include <netinet/in.h>
  63. #include <arpa/nameser.h>
  64.  
  65. #include <stdio.h>
  66. #include <resolv.h>
  67. #if defined(BSD) && (BSD >= 199103)
  68. # include <string.h>
  69. #else
  70. # include "../conf/portability.h"
  71. #endif
  72.  
  73. #if defined(USE_OPTIONS_H)
  74. # include <../conf/options.h>
  75. #endif
  76.  
  77. /*
  78.  * Form all types of queries.
  79.  * Returns the size of the result or -1.
  80.  */
  81. int
  82. res_mkquery(op, dname, class, type, data, datalen, newrr_in, buf, buflen)
  83.     int op;            /* opcode of query */
  84.     const char *dname;    /* domain name */
  85.     int class, type;    /* class and type of query */
  86.     const u_char *data;    /* resource record data */
  87.     int datalen;        /* length of data */
  88.     const u_char *newrr_in;    /* new rr for modify or append */
  89.     u_char *buf;        /* buffer to put query */
  90.     int buflen;        /* size of buffer */
  91. {
  92.     register HEADER *hp;
  93.     register u_char *cp;
  94.     register int n;
  95.     struct rrec *newrr = (struct rrec *) newrr_in;
  96.     u_char *dnptrs[20], **dpp, **lastdnptr;
  97.  
  98. #ifdef DEBUG
  99.     if (_res.options & RES_DEBUG)
  100.         printf(";; res_mkquery(%d, %s, %d, %d)\n",
  101.                op, dname, class, type);
  102. #endif
  103.     /*
  104.      * Initialize header fields.
  105.      */
  106.     if ((buf == NULL) || (buflen < HFIXEDSZ))
  107.         return(-1);
  108.     bzero(buf, HFIXEDSZ);
  109.     hp = (HEADER *) buf;
  110.     hp->id = htons(++_res.id);
  111.     hp->opcode = op;
  112.     hp->pr = (_res.options & RES_PRIMARY) != 0;
  113.     hp->rd = (_res.options & RES_RECURSE) != 0;
  114.     hp->rcode = NOERROR;
  115.     cp = buf + HFIXEDSZ;
  116.     buflen -= HFIXEDSZ;
  117.     dpp = dnptrs;
  118.     *dpp++ = buf;
  119.     *dpp++ = NULL;
  120.     lastdnptr = dnptrs + sizeof dnptrs / sizeof dnptrs[0];
  121.     /*
  122.      * perform opcode specific processing
  123.      */
  124.     switch (op) {
  125.     case QUERY:
  126.         if ((buflen -= QFIXEDSZ) < 0)
  127.             return(-1);
  128.         if ((n = dn_comp(dname, cp, buflen, dnptrs, lastdnptr)) < 0)
  129.             return (-1);
  130.         cp += n;
  131.         buflen -= n;
  132.         __putshort(type, cp);
  133.         cp += INT16SZ;
  134.         __putshort(class, cp);
  135.         cp += INT16SZ;
  136.         hp->qdcount = htons(1);
  137.         if (op == QUERY || data == NULL)
  138.             break;
  139.         /*
  140.          * Make an additional record for completion domain.
  141.          */
  142.         buflen -= RRFIXEDSZ;
  143.         n = dn_comp((char *)data, cp, buflen, dnptrs, lastdnptr);
  144.         if (n < 0)
  145.             return (-1);
  146.         cp += n;
  147.         buflen -= n;
  148.         __putshort(T_NULL, cp);
  149.         cp += INT16SZ;
  150.         __putshort(class, cp);
  151.         cp += INT16SZ;
  152.         __putlong(0, cp);
  153.         cp += INT32SZ;
  154.         __putshort(0, cp);
  155.         cp += INT16SZ;
  156.         hp->arcount = htons(1);
  157.         break;
  158.  
  159.     case IQUERY:
  160.         /*
  161.          * Initialize answer section
  162.          */
  163.         if (buflen < 1 + RRFIXEDSZ + datalen)
  164.             return (-1);
  165.         *cp++ = '\0';    /* no domain name */
  166.         __putshort(type, cp);
  167.         cp += INT16SZ;
  168.         __putshort(class, cp);
  169.         cp += INT16SZ;
  170.         __putlong(0, cp);
  171.         cp += INT32SZ;
  172.         __putshort(datalen, cp);
  173.         cp += INT16SZ;
  174.         if (datalen) {
  175.             bcopy(data, cp, datalen);
  176.             cp += datalen;
  177.         }
  178.         hp->ancount = htons(1);
  179.         break;
  180.  
  181. #ifdef ALLOW_UPDATES
  182.     /*
  183.      * For UPDATEM/UPDATEMA, do UPDATED/UPDATEDA followed by UPDATEA
  184.      * (Record to be modified is followed by its replacement in msg.)
  185.      */
  186.     case UPDATEM:
  187.     case UPDATEMA:
  188.  
  189.     case UPDATED:
  190.         /*
  191.          * The res code for UPDATED and UPDATEDA is the same; user
  192.          * calls them differently: specifies data for UPDATED; server
  193.          * ignores data if specified for UPDATEDA.
  194.          */
  195.     case UPDATEDA:
  196.         buflen -= RRFIXEDSZ + datalen;
  197.         if ((n = dn_comp(dname, cp, buflen, dnptrs, lastdnptr)) < 0)
  198.             return (-1);
  199.         cp += n;
  200.         __putshort(type, cp);
  201.                 cp += INT16SZ;
  202.                 __putshort(class, cp);
  203.                 cp += INT16SZ;
  204.         __putlong(0, cp);
  205.         cp += INT32SZ;
  206.         __putshort(datalen, cp);
  207.                 cp += INT16SZ;
  208.         if (datalen) {
  209.             bcopy(data, cp, datalen);
  210.             cp += datalen;
  211.         }
  212.         if ( (op == UPDATED) || (op == UPDATEDA) ) {
  213.             hp->ancount = htons(0);
  214.             break;
  215.         }
  216.         /* Else UPDATEM/UPDATEMA, so drop into code for UPDATEA */
  217.  
  218.     case UPDATEA:    /* Add new resource record */
  219.         buflen -= RRFIXEDSZ + datalen;
  220.         if ((n = dn_comp(dname, cp, buflen, dnptrs, lastdnptr)) < 0)
  221.             return (-1);
  222.         cp += n;
  223.         __putshort(newrr->r_type, cp);
  224.                 cp += INT16SZ;
  225.                 __putshort(newrr->r_class, cp);
  226.                 cp += INT16SZ;
  227.         __putlong(0, cp);
  228.         cp += INT32SZ;
  229.         __putshort(newrr->r_size, cp);
  230.                 cp += INT16SZ;
  231.         if (newrr->r_size) {
  232.             bcopy(newrr->r_data, cp, newrr->r_size);
  233.             cp += newrr->r_size;
  234.         }
  235.         hp->ancount = htons(0);
  236.         break;
  237.  
  238. #endif /* ALLOW_UPDATES */
  239.     }
  240.     return (cp - buf);
  241. }
  242.